home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / xstrdup.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  171b  |  13 lines

  1. #include "kiss.h"
  2.  
  3. char *xstrdup (char *s)
  4. {
  5.     register char
  6.     *ret;
  7.  
  8.     if (! (ret = strdup (s)))
  9.     error ("can't stringdup %d bytes", strlen (s));
  10.  
  11.     return (ret);
  12. }
  13.